ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / MultiSelect<T> Class / Delay Property






In This Topic
    Delay Property (MultiSelect<T>)
    In This Topic
    Gets or sets the delay, in milliseconds, between when a keystroke occurs and when the search is performed to update the filter. This property is relevant only when the ShowFilterInput property is set to true.
    Syntax
    'Declaration
     
    
    <System.ComponentModel.DefaultValueAttribute(500)>
    Public Property Delay As System.Integer
    'Usage
     
    
    Dim instance As MultiSelect(Of T)
    Dim value As System.Integer
     
    instance.Delay = value
     
    value = instance.Delay
    [System.ComponentModel.DefaultValue(500)]
    public System.int Delay {get; set;}
    public read-write property Delay: System.Integer; 
    System.ComponentModel.DefaultValueAttribute(500)
    public function get,set Delay : System.int
    [System.ComponentModel.DefaultValue(500)]
    public: __property System.int get_Delay();
    public: __property void set_Delay( 
       System.int value
    );
    [System.ComponentModel.DefaultValue(500)]
    public:
    property System.int Delay {
       System.int get();
       void set (    System.int value);
    }
    Remarks
    The default value for this property is 500 milliseconds.
    See Also